			INSTALLATION
-------------------------------------------------------------------------
1. Run Olimex-GCCFD-240907.EXE and follow the wizard steps. If you choose to install JRE, it will start automaticaly after installation.
2. Connect ARM-JTAG-OCD and install drivers.
 
 			PROJECT CREATION
---------------------------------------------------------------------------
1. Run the shortcut "Eclipse" on desktop.
2.
	2.1open the project corresponding to the board you have, and open it's main.c file. 
	2.2If there is not suitable project corresponding to your board
 create new C project and name it after board you have.
		2.2.1 Create main.c file. You should also include LPC header file you need.If it doesn't fit to CPU of your board, change header file according to the CPU program model .
		2.2.2 Create your own or modify previous existing .cmd file - This Linker Script defines how the code and data emitted by the GNU C compiler and assembler are to be loaded into memory (code goes into FLASH, variables go into RAM). You should change MEMORY section and stack end according to memory map-look at the chapters for memory addressing and flash memory system in user manual of your board.
		2.2.3 Another important file you need is .CFG file. In that file are specified commands for OpenOCD configuration.The Open On-Chip Debugger (OpenOCD) runs as a daemon, and reads it current configuration by default from the file openocd.cfg in the current directory. A different configuration file can be specified with the -f <conf.file> given at the openocd command line. The configuration file is used to specify on which ports the daemon listens for new connections, the JTAG interface used to connect to the target, the layout of the JTAG chain, the targets that should be debugged, and connected flashes.For more information see http://openfacts.berlios.de/index-en.phtml?title=Open+On-Chip+Debugger
		2.2.4.You should also need MAKEFILE to specify way of compilation. You may use old one or change it as suitable to you.
		
	After project is built you can debug it.

			PROGRAM DEBUG
-----------------------------------------------------------------------------
1.Another file needed by GDB<-->OCD communication is .cfg file. It contains list of OCD commands
2. Switch to the Debug Perspective(Window->Show View->Debug)
3. Start OpenOCD program from Run -> External Tools -> OpenOCD 
4. Start the debugger from "Run->Open Debug Dialog->Embedded Debug(Cygwin)-><your project debug profile>", "Debug"
5. Enjoy the demo.

Note! If at any point a message box pops-up stating that ${project_loc} is not defined, make sure that a file from the project is actually open and selected in the editor.